/* ===================================================================
 * # base style overrides
 *
 * ------------------------------------------------------------------- */

:root {
    --color_kaptia: #7ab800;

    --color_unik: #f87d18;
    --color_multi: #7ab800;
    --color_ff: #ff0000;
    --color-evo: #0000FF;
    --color-simplyII: #9f52a4;
} 

html {
    font-size: 10px;
}

@media only screen and (max-width: 400px) {
    html {
        font-size: 9.411764705882353px;
    }
}

html, body {
    height: 100%;
}

body {
    background: #111111;
    font-family: "gotham-light", serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: normal;
    line-height: 1.765;
    color: #757575;
    margin: 0;
    padding: 0;
}

body.light{
    background: #FFFFFF;
}

.footer-desc a {
    color: rgba(255, 255, 255, 0.5);
    margin: 15px;
} 

/* ------------------------------------------------------------------- 
 * ## links
 * ------------------------------------------------------------------- */
 a {
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover, a:focus, a:active {
    color: var(--color_kaptia);
}

a:hover, a:active {
    outline: 0;
}


/* ===================================================================
 * # forms
 *
 * ------------------------------------------------------------------- */
 fieldset {
    border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    display: block;
    height: 6rem;
    padding: 1.5rem 0;
    border: 0;
    outline: none;
    color: #333333;
    font-family: "montserrat-light", sans-serif;
    font-size: 1.4rem;
    line-height: 3rem;
    max-width: 100%;
    background: transparent;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cl-custom-select {
    position: relative;
    padding: 0;
}

.cl-custom-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    margin: 0;
    line-height: 3rem;
    vertical-align: middle;
}

.cl-custom-select select option {
    padding-left: 2rem;
    padding-right: 2rem;
}

.cl-custom-select select::-ms-expand {
    display: none;
}

.cl-custom-select::after {
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    border-right: 2px solid rgba(0, 0, 0, 0.5);
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    margin-top: -7px;
    pointer-events: none;
    position: absolute;
    right: 2.4rem;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}


/* IE9 and below */

.oldie .cl-custom-select::after {
    display: none;
}

textarea {
    min-height: 25rem;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    color: #000000;
    border-bottom: 2px solid black;
}

label, legend {
    font-family: "montserrat-regular", sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: .9rem;
    line-height: 1.714;
    color: #000000;
    display: block;
}

input[type="checkbox"], input[type="radio"] {
    display: inline;
}

label > .label-text {
    display: inline-block;
    margin-left: 1rem;
    font-family: "montserrat-regular", sans-serif;
    font-weight: normal;
    line-height: inherit;
}

label > input[type="checkbox"], 
label > input[type="radio"] {
    margin: 0;
    position: relative;
    top: .15rem;
}




/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "gotham-medium", sans-serif;
    color: #000000;
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    margin-top: 6rem;
    margin-bottom: 1.8rem;
}

@media only screen and (max-width: 600px) {
    h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
        margin-top: 5.1rem;
    }
}

h5, .h5, h6, .h6 {
    margin-top: 4.2rem;
    margin-bottom: 1.5rem;
}

@media only screen and (max-width: 600px) {
    h5, .h5, h6, .h6 {
        margin-top: 3.6rem;
        margin-bottom: 0.9rem;
    }
}

h1, .h1 {
    font-size: 3.6rem;
    line-height: 1.25;
    letter-spacing: -.1rem;
}

@media only screen and (max-width: 600px) {
    h1, .h1 {
        font-size: 3.3rem;
        letter-spacing: -.07rem;
    }
}

h2, .h2 {
    font-size: 3rem;
    line-height: 1.3;
}

h3, .h3 {
    font-size: 2.4rem;
    line-height: 1.25;
}

h4, .h4 {
    font-size: 2.1rem;
    line-height: 1.286;
}

h5, .h5 {
    font-size: 1.6rem;
    line-height: 1.313;
}

h6, .h6 {
    font-size: 1.3rem;
    line-height: 1.385;
    text-transform: uppercase;
    letter-spacing: .16rem;
}

p img {
    margin: 0;
}

p.lead {
    font-family: "gotham-thin", sans-serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 3.6rem;
    color: #000000;
}

@media only screen and (max-width: 800px) {
    p.lead {
        font-size: 1.8rem;
    }
}

em, i, strong, b {
    font-size: inherit;
    line-height: inherit;
    font-style: normal;
    font-weight: normal;
}

em, i {
    font-family: "lora-italic", serif;
}

strong, b {
    font-family: "gotham-medium", serif;
}

small {
    font-size: 1.2rem;
    line-height: inherit;
}

blockquote {
    margin: 3.9rem 0;
    padding-left: 4.5rem;
    position: relative;
}

blockquote:before {
    content: "\201C";
    font-size: 10rem;
    line-height: 0px;
    margin: 0;
    color: rgba(0, 0, 0, 0.25);
    font-family: arial, sans-serif;
    position: absolute;
    top: 3.6rem;
    left: 0;
}

blockquote p {
    font-family: "gotham-thin", sans-serif;
    padding: 0;
    font-size: 2.1rem;
    line-height: 1.857;
    color: #111111;
}

blockquote cite {
    display: block;
    font-family: "gotham-thin", sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    line-height: 1.5;
}

blockquote cite:before {
    content: "\2014 \0020";
}

blockquote cite a, blockquote cite a:visited {
    color: #828282;
    border: none;
}

abbr {
    font-family: "lora-bold", serif;
    font-variant: small-caps;
    text-transform: lowercase;
    letter-spacing: .05rem;
    color: #828282;
}

var, kbd, samp, code, pre {
    font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
    padding: 2.4rem 3rem 3rem;
    background: #F1F1F1;
    overflow-x: auto;
}

code {
    font-size: 1.4rem;
    margin: 0 .2rem;
    padding: .3rem .6rem;
    white-space: nowrap;
    background: #F1F1F1;
    border: 1px solid #E1E1E1;
    border-radius: 3px;
}

pre > code {
    display: block;
    white-space: pre;
    line-height: 2;
    padding: 0;
    margin: 0;
}

pre.prettyprint > code {
    border: none;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
    text-decoration: none;
}

mark {
    background: #ffd900;
    color: #000000;
}

hr {
    border: solid rgba(0, 0, 0, 0.1);
    border-width: 1px 0 0;
    clear: both;
    margin: 2.4rem 0 1.5rem;
    height: 0;
}


/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
 .btn,
 button,
 input[type="submit"],
 input[type="reset"],
 input[type="button"] {
     display: inline-block;
     font-family: "gotham-medium", sans-serif;
     font-size: 1.2rem;
     text-transform: uppercase;
     letter-spacing: .3rem;
     height: 5.4rem;
     line-height: calc(5.4rem - .4rem);
     padding: 0 3rem;
     margin: 0 .3rem 1.2rem 0;
     color: #000000;
     text-decoration: none;
     text-align: center;
     white-space: nowrap;
     cursor: pointer;
     -webkit-transition: all 0.3s ease-in-out;
     transition: all 0.3s ease-in-out;
     background-color: #c5c5c5;
     border: .2rem solid #c5c5c5;
 }
 
 .btn:hover,
 button:hover,
 input[type="submit"]:hover,
 input[type="reset"]:hover,
 input[type="button"]:hover,
 .btn:focus,
 button:focus,
 input[type="submit"]:focus,
 input[type="reset"]:focus,
 input[type="button"]:focus {
     background-color: #b8b8b8;
     border-color: #b8b8b8;
     color: #000000;
     outline: 0;
 }
 
 
 /* button primary
  * ------------------------------------------------- */
 
 .btn.btn--primary,
 button.btn--primary,
 input[type="submit"].btn--primary,
 input[type="reset"].btn--primary,
 input[type="button"].btn--primary {
     background: var(--color_kaptia);
     border-color: var(--color_kaptia);
     color: #FFFFFF;
 }
 
 .btn.btn--primary:hover,
 button.btn--primary:hover,
 input[type="submit"].btn--primary:hover,
 input[type="reset"].btn--primary:hover,
 input[type="button"].btn--primary:hover,
 .btn.btn--primary:focus,
 button.btn--primary:focus,
 input[type="submit"].btn--primary:focus,
 input[type="reset"].btn--primary:focus,
 input[type="button"].btn--primary:focus {
     background: #FFFFFF;
     border-color: #000000;
     color: #000;
 }

 .pdf-button {
    display: flex;
    align-items: center;
    border: 2px #ef3a3a solid;
    width: 230px;
    max-height: 50px;
    border-radius: 5px;
    cursor: pointer;
 }

 .pdf-button .texto {
    color: #00000095;
    font-size: 1.25rem;
    width: calc(100% - 40px);
    text-align: center;
    font-family: "gotham-medium", sans-serif;
 }

 .pdf-button svg{
    width: 40px;
 }



 .windows-button {
    display: flex;
    align-items: center;
    border: 2px #0078d6 solid;
    background-color: #0078d6;
    max-height: 50px;
    width: 230px;
    border-radius: 5px;
    cursor: pointer;
 }

 .windows-button .texto {
    color: #FFFFFF;
    font-size: 1.25rem;
    width: calc(100% - 40px);
    text-align: center;
    font-family: "gotham-medium", sans-serif;
 }

 .windows-button svg{
    width: 40px;
    padding: 8px;
 }


 .android-button {
    display: flex;
    align-items: center;
    border: 2px #A4c639 solid;
    background-color: #A4c639;
    max-height: 50px;
    width: 230px;
    border-radius: 5px;
    cursor: pointer;
 }

 .android-button .texto {
    color: #FFFFFF;
    font-size: 1.25rem;
    width: calc(100% - 40px);
    text-align: center;
    font-family: "gotham-medium", sans-serif;
 }

 .android-button svg{
    width: 40px;
    padding: 8px;
 }
 
 
 /* button modifiers
  * ------------------------------------------------- */
 
 .btn.full-width, button.full-width {
     width: 100%;
     margin-right: 0;
 }
 
 .btn--medium, button.btn--medium {
     height: 5.7rem !important;
     line-height: calc(5.7rem - .4rem) !important;
 }
 
 .btn--large, button.btn--large {
     height: 6rem !important;
     line-height: calc(6rem - .4rem) !important;
 }

 .btn--small, button.btn--small {
    height: 4rem !important;
    line-height: calc(4rem - .4rem) !important;
}
 
 .btn--stroke, button.btn--stroke {
     background: transparent !important;
     border: 0.2rem solid var(--color_kaptia);
     color: var(--color_kaptia);
 }

 
 .btn--stroke:hover, button.btn--stroke:hover {
     border: 0.2rem solid #000000;
     color: #000000;
 }


  .btn--stroke--ligth, button.btn--stroke--ligth {
     background: transparent !important;
     border: 0.2rem solid white;
     color: white;
 }

 
 .btn--stroke--ligth:hover, button.btn--stroke--ligth:hover {
     border: 0.2rem solid var(--color_kaptia);
     color: var(--color_kaptia);
 }


 .btn--stroke--black, button.btn--stroke--black {
    background: transparent !important;
    border: 0.2rem solid black;
    color: black;
}



.btn--stroke--black:hover, button.btn--stroke--black:hover {
    border: 0.2rem solid var(--color_kaptia);
    color: var(--color_kaptia);
}


.btn--stroke--opacity, button.btn--stroke--opacity {
    background: transparent !important;
    border: 0.2rem solid #000000AA;
    color: #000000AA;
}



.btn--stroke--opacity:hover, button.btn--stroke--opacity:hover {
    border: 0.2rem solid var(--color_kaptia);
    color: var(--color_kaptia);
}
 
 .btn--pill, button.btn--pill {
     padding-left: 3rem !important;
     padding-right: 3rem !important;
     border-radius: 1000px !important;
 }
 
 button::-moz-focus-inner, input::-moz-focus-inner {
     border: 0;
     padding: 0;
 }
 

 /* ------------------------------------------------------------------- 
 * ## display headings
 * ------------------------------------------------------------------- */
.display-1 {
    font-family: "montserrat-medium", sans-serif;
    font-size: 7.8rem;
    line-height: 1.25;
    color: #000000;
    margin-top: 0;
}

.display-1--light {
    color: #FFFFFF;
}

.display-1 .highligth {
    color: var(--color_kaptia);
}

.display-2 {
    font-family: "montserrat-medium", sans-serif;
    font-size: 5.2rem;
    line-height: 1.25;
    color: #000000;
    margin-top: 0;
}

.display-2--light {
    color: #FFFFFF;
}

.display-2 .highligth {
    color: var(--color_kaptia);
}

.display-3 {
    font-family: "gotham-medium", sans-serif;
    font-size: 3rem;
    line-height: 1.255;
    color: #000000;
    margin-top: 0;
}

.display-3--light {
    color: #FFFFFF;
}

.display-3 .highligth {
    color: var(--color_kaptia);
}

.subhead + .display-2 {
    margin-top: .6rem;
}

.subhead {
    font-family: "montserrat-bold", sans-serif;
    font-size: 1.7rem;
    line-height: 1.333;
    text-transform: uppercase;
    letter-spacing: .25rem;
    color: var(--color_kaptia);
    margin-top: 0;
    margin-bottom: 0;
}

.subhead--dark {
    color: #000000;
}

.subhead--ligth {
    color: #FFFFFF;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * display headings
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .display-1 {
        font-size: 7.2rem;
    }
    .display-2 {
        font-size: 4.4rem;
    }
}

@media only screen and (max-width: 800px) {
    .display-1 {
        font-size: 6.5rem;
    }
    .display-2 {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 600px) {
    .display-1 {
        font-size: 5rem;
    }
    .display-2 {
        font-size: 3.3rem;
    }
    .subhead {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 400px) {
    .display-1 {
        font-size: 4.2rem;
    }
    .display-2 {
        font-size: 3rem;
    }
}


/* ===================================================================
 * # header styles
 *
 * ------------------------------------------------------------------- */
 .s-header {
    width: 100%;
    height: 75px;
    position: absolute;
    top: 0;
    z-index: 500;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.1);
}

.s-header.no-shadow {
    box-shadow: none;
}

.s-header.light{
    background: white;
}

.s-header.transparent{
    background: none;
}


/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */

 header {
    width: 100%;
 }

.header-logo {
    display: inline-block;
    position: absolute;
    margin: 0;
    padding: 0;
    left: 12px;
    top: 50%;
    height: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 501;
}

.header-fe {
    right: 12px;
    position: absolute;
    color: #343434;
}

.header-logo a,
.header-fe a {
    display: block;
    margin: 0;
    padding: 1.1rem 1.5rem 1.5rem 1.5rem;
    outline: 0;
    border: none;
    width: 150px;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/* -------------------------------------------------------------------
 * ## header flag
 * ------------------------------------------------------------------- */
 .header-flag {
    display: inline-block;
    position: absolute;
    margin: 0;
    padding: 0;
    right: 12px;
    top: 50%;
    height: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 501;
}

.header-flag a {
    display: block;
    margin: 0;
    padding: 1.1rem 1.5rem 1.5rem 1.5rem;
    outline: 0;
    border: none;
    width: 150px;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-flag img {
    float: right;
    height: 100%;
}



/* ------------------------------------------------------------------- 
 * ## horizontal navigation 
 * ------------------------------------------------------------------- */

.header-nav-horizontal {
    float:right;
    height: 100%;
}

.header-nav-close {
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 36px;
    right: 30px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    z-index: 800;
}

.header-nav__close {
    display: none;
    height: 30px;
    width: 30px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 36px;
    right: 30px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    z-index: 800;
}

.header-nav__close span::before, 
.header-nav__close span::after {
    content: "";
    display: block;
    height: 2px;
    width: 12px;
    background-color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 9px;
    margin-top: -1px;
}





.header-nav__close span::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header-nav__close span::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header-menu-toggle {
    position: fixed;
    right: 38px;
    top: 24px;
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-family: "montserrat-medium", sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    color: var(--color_kaptia);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    visibility: hidden;
}

.header-menu-toggle.opaque {
    background-color: #000000;
}

.header-menu-toggle.opaque .header-menu-text {
    background-color: #000000;
}

.header-menu-icon {
    display: block;
    width: 22px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    left: 10px;
    top: 50%;
    right: auto;
    bottom: auto;
    background-color: white;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.s-header.light .header-menu-toggle.opaque .header-menu-icon {
    background-color: #FFFFFF;
}


.s-header.light .header-menu-icon {
    background-color: #000;
}

.header-menu-icon::before, .header-menu-icon::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header-menu-icon::before {
    top: -9px;
}

.header-menu-icon::after {
    bottom: -9px;
}


.header-nav-horizontal.dark a{
    color: black;
    opacity: .85;
}

.header-nav-horizontal.dark a:hover{
    color: var(--color_kaptia);
    opacity: 1;
}

.header-nav-horizontal-list {
    list-style: none;
    font-family: "gotham-medium", sans-serif;
    font-size: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 3rem;    
    justify-content: space-around;
    margin-right: 3rem;
}

.header-nav-horizontal-list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: auto;

}

.header-nav-horizontal-list li:hover{
    color: var(--color_kaptia);
}

/* @media only screen and (max-width: 600px) {
    
    .header-nav-horizontal {
        background: #0C0C0C;
        color: rgba(255, 255, 255, 0.25);
        font-family: "montserrat-light", sans-serif;
        font-size: 1.3rem;
        line-height: 1.846;
        padding: 3.6rem 3rem 3.6rem 3.6rem;
        height: 100%;
        width: 280px;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 700;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-transition: all 0.5s ease;
        transition: all 0.5s ease;
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        visibility: hidden;
    }

    .header-nav-horizontal.dark a{
        color: white;
        opacity: 1;
    }

    .header-menu-toggle {
        visibility: visible;
    }

    .header-nav-horizontal-list {
        font-size: 2.5rem;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;    
        justify-content: space-around;
        margin-top: 5rem;
    }

    .header-nav__close{
        display: block;
    }

    
    .menu-is-open .header-nav-horizontal {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        visibility: visible;
        -webkit-overflow-scrolling: touch;
    }

    .menu-is-open .header-nav-horizontal .header-nav-horizontal-list {
        opacity: 1;
        visibility: visible;
        -webkit-transition-property: all;
        transition-property: all;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-timing-function: ease-in-out;
        transition-timing-function: ease-in-out;
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
        left: 0;
    }




} */

/* ------------------------------------------------------------------- 
 * ## products dropdown 
 * ------------------------------------------------------------------- */

 .dropdown-products {
    display: none;
    position: absolute;
    top: 75px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-products li{
    background-color: #FFFFFFDD;
    padding: 2rem;
    min-width: 300px;
    min-height: 75px;
    display: flex;
    align-items: center;
}

.dropdown-products .products-icon-container-dropdown{
    display: none;
    justify-content: center; 
    align-items: center;
}

.dropdown-products .products-icon {
    width: 20%;
    float: left;
    
}

.dropdown-products .products-icon svg{
    width: 30px;
}

.dropdown:hover .dropdown-products {
    display: block;
}

@media only screen and (max-width: 600px) {

   
    .dropdown-products{
        display: block;
        position: static;
        width: 100%;
        background-color: transparent;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .dropdown-products li{
        display: block;
        width: 100%;
        background-color: transparent;
        font-size: 1.5rem;
        padding: 0;
        min-width: 100%;
        min-height: 100%;
        text-align: center;
        
    }

    .header-nav-horizontal-list li {
        width: 100%;
    }

    /* .header-nav-horizontal.dark a {
        color: white;
        opacity: .8;
    } */

    .header-nav-horizontal.dark a:hover {
        color: var(--color_kaptia);
        opacity: 1;
    }
}


/* ------------------------------------------------------------------- 
 * ## language dropdown 
 * ------------------------------------------------------------------- */

 .dropdown-language {
    display: none;
    position: absolute;
    top: 75px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-language li{
    background-color: #FFFFFFDD;
    padding: 2rem;
    min-width: 75px;
    min-height: 35px;
    display: flex;
    align-items: center;
}

.dropdown-language.dark li{
    background-color: #00000095;
}


.dropdown:hover .dropdown-language {
    display: block;
}

@media only screen and (max-width: 600px) {

   
    .dropdown-language{
        display: block;
        position: static;
        width: 100%;
        background-color: transparent;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .header-nav-horizontal-list li .dropdown {
        position: absolute;
        bottom: 10px;
    }

    .header-nav-horizontal-list li {
        width: 100%;
    }

    .dropdown-language li{
        display: inline-block;
        width: 45%;
        background-color: transparent;
        font-size: 1.5rem;
        padding: 0;
        min-height: 100%;
        text-align: center;
        
    }

    

    /* .header-nav-horizontal.dark a {
        color: white;
        opacity: .8;
    } */

    .header-nav-horizontal.dark a:hover {
        color: var(--color_kaptia);
        opacity: 1;
    }
}




/* ------------------------------------------------------------------- 
 * ## products nav 
 * ------------------------------------------------------------------- */

 .products-nav-container{
    text-align: center;
    height: 25%;
    padding-top: 96px;
    background-color: white;
    color: #111111;
    visibility: hidden;
 }

 .products-nav-container.dark-mode {
    background-color: #000000BB;
    color: white;
 }

 .products-nav {
    width: 100%;
    height: 100%;
    text-align:center;
    opacity: .7;
 }

 .products-nav.dark-mode{
    opacity: 1;
 }

 .products-icon-container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50%;
    margin-bottom: 1rem;
 }

 .products-icon {
    width: 100%;
    height: 100%;
 }

.products-nav-list {
    list-style: none;
    font-family: "gotham-medium", sans-serif;
    font-size: 1.5rem;
    height: 100%;
    padding: 1rem 2rem 2rem 2rem;
    text-align: center;

}

.products-nav-list ul {
    text-align: center;
}

.products-nav-list li {
    margin-top: 0.75rem;
}

.products-nav-list.dark-mode{
    padding: 2rem 2rem 2rem 2rem;
}



.products-icon.icon-klever svg path,
.products-icon.icon-mandos svg path
{
    fill: #231f20;
    stroke: #231f20;
    stroke-miterlimit: 10;    
}

.products-icon.icon-klever.dark-mode svg path,
.products-icon.icon-mandos.dark-mode svg path
{
    fill: #FFFFFF;
    stroke: #FFFFFF;
    stroke-miterlimit: 5;
    stroke-width: 1px;
    
}

.products-icon.icon-receptores.dark-mode svg rect,
.products-icon.icon-receptores.dark-mode svg line,
.products-icon.icon-receptores.dark-mode svg circle
{
    fill: none;
    stroke: #FFFFFF;
    stroke-miterlimit: 10;
    stroke-width: 11px;
}


.products-icon.icon-receptores svg rect,
.products-icon.icon-receptores svg line,
.products-icon.icon-receptores svg circle
{
    fill: none;
    stroke: #231f20;
    stroke-miterlimit: 10;
    stroke-width: 11px;
}

.products-icon.icon-receptores.dark-mode svg rect,
.products-icon.icon-receptores.dark-mode svg line,
.products-icon.icon-receptores.dark-mode svg circle
{
    fill: none;
    stroke: #FFFFFF;
    stroke-miterlimit: 10;
    stroke-width: 11px;
}

.products-icon.icon-receptores svg rect.ligth{
    fill: #231f20; 
}

.products-icon.icon-receptores svg circle.light {
    fill: #231f20;
}

.products-icon.icon-receptores.dark-mode svg rect.ligth{
    fill: #FFFFFF; 
}

.products-icon.icon-receptores.dark-mode svg circle.light {
    fill: #FFFFFF;
}



.products-icon.icon-ukard svg rect,
.products-icon.icon-ukard svg line,
.products-icon.icon-ukard svg circle
{
    fill: white;
    stroke: white;
    stroke-miterlimit: 10;
    stroke-width: 5px;
}

.products-icon.icon-ukard.dark-mode svg rect,
.products-icon.icon-ukard.dark-mode svg line,
.products-icon.icon-ukard.dark-mode svg circle
{
    fill: #231f20;
    stroke: #231f20;
    stroke-miterlimit: 10;
    stroke-width: 5px;
}


.products-icon.icon-ukard svg path {
    fill: #231f20;
    stroke: white;
    stroke-miterlimit: 10;
    stroke-width: 5px;
}

.products-icon.icon-ukard.dark-mode svg path {
    fill: none;
    stroke: white;
    stroke-miterlimit: 10;
    stroke-width: 5px;
}

.products-icon.icon-ukard svg path.ligth {
    fill: white;
    stroke: white;
    stroke-miterlimit: 10;
    stroke-width: 5px;
}

.products-icon.icon-ukard.dark-mode svg path.ligth,
.products-icon.icon-ukard.dark-mode svg polygon.ligth {
    fill: white;
    stroke:white;
    stroke-miterlimit: 10;
    stroke-width: 5px;
}

.products-nav-list svg {
    height: 100%;
}


.products-nav-list li {
    height: 100%;
    display: inline-block;
    color: #000;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


.products-nav-list a {

    height: 100%;
    color: #000;
    float:left;
    padding-left: 1.5rem;
    padding-right: 1.5rem;

}

.products-nav-list.dark-mode li,
.products-nav-list.dark-mode a{
    color: white;
}


@media only screen and (max-width: 400px) {


    .products-nav-container {
        height: 250px;
    }

    .products-nav {
        height: 100%;
        width: 100%;
    }

    .products-nav-list {
        width: 100%;
        height: 100%;
    }

    .products-nav-list li {

        width: 50%;
        height: 50%;

    }

}




/* ------------------------------------------------------------------- 
 * ## product-video-banner
 * ------------------------------------------------------------------- */

.product-banner {
    height: 100%;
    overflow: hidden;
}

.product-banner .video-container {
    height: 100%;
    overflow: hidden;
}


.product-banner video {
    position: relative;
    top: -120px;
    width: 100%;
}

.product-banner.banner-mandos video{
    position: relative;
    top: -400px;
    width: 100%;
}


#ukard-banner video {
    position: relative;
    top: -50px;
    width: 100%;
}

#mandos-banner video {
    position: relative;
    top: 20px;    
    width: 100%;
}


#key-banner video {
    position: relative;
    top: -222px;    
    width: 100%;
}

#receptores-banner video {
    position: relative;
    top: 75px;    
    width: 100%;
}




@media only screen and (max-width: 800px) {

    .product-banner{
        height: auto;
    }

    .product-banner.banner-klever{
        background-color: white;
    }

    .product-banner video {
        top: 75px;
        width: 150%;
        max-width: 150%;
    }

    #mandos-banner video{
        top: 75px;
        left: -70px;
        width: 150%;
        max-width: 150%;
    }

    #ukard-banner video {
        top: 75px;
        left: -30px;
        width: 160%;
        max-width: 160%;
    }

    #receptores-banner .video-container {
        margin-top: 75px;

    }

    #receptores-banner video {
        top: 0px;
        width: 100%;
        max-width: 100%;
    }


    #key-banner video {
        position: relative;
        top: 75px;    
        width: 100%;
    }
}

/* ------------------------------------------------------------------- 
 * ## klever banner info
 * ------------------------------------------------------------------- */

 @keyframes opacityIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

.klever-banner-info{
    position:absolute;
    width: 35%;  
    padding: 5rem;
    right: 0;
    bottom: 20%;
    display: none;
    animation: opacityIn 1s ease-in-out;
}

.klever-banner-info h3 {
    font-family: "gotham-medium", sans-serif;
    font-size: 1.6rem;
    color: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: .3rem;
    position: relative;
    margin-top: 0;
    margin-bottom: 1.2rem;
    margin-left: 0px;
}

.feder_img{
    margin-top: 75px;
}

.feder_img h3 {
    text-align: center;
    font-weight: bold;
    margin-top: 120px;
}

.feder_img img {
    width: 50%;
    border: 2px solid #000;    
}

.feder_img_center {
    text-align: center;
    margin-bottom: 120px;
}

.klever-banner-info h1 {
    font-family: "gotham-medium", sans-serif;
    font-size: 3rem;
    line-height: 1.333;
    margin-top: 0;
    color: #333333;
}

.klever-banner-info .btn {
    width: 250px;
    border-color: #333333;
    color: #333333;
    margin: 1.5rem 1.5rem 0 0;
    letter-spacing: .25rem;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 800px) {

    .feder_img img {
        width: 90%;
        border: 2px solid #000;    
    }

    .klever-banner-info .btn {
        border-color: black;
        color: black;

    }    

    .klever-banner-info h3{

        color: #00000095;
    }

    .klever-banner-info h1 {
        color: black;
    }


    .product-banner .video-container{
        height: auto;
    }

    .klever-banner-info{
        position:static;
        width: 100%;  
        display: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        animation: opacityIn 1s ease-in-out;
        text-align: center;
    }
}


@media only screen and (max-width: 600px) {

    .feder_img img {
        width: 90%;
        border: 2px solid #000;    
    }

    .klever-banner-info .btn {
        border-color: black;
        color: black;

    }    

    .klever-banner-info h3{

        color: #00000095;
    }

    .klever-banner-info h1 {
        color: black;
    }


    .product-banner .video-container{
        height: auto;
    }

    .klever-banner-info{
        position:static;
        width: 100%;  
        display: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        animation: opacityIn 1s ease-in-out;
        text-align: center;
    }
}


/* ------------------------------------------------------------------- 
 * ## mandos banner info
 * ------------------------------------------------------------------- */

 @keyframes opacityIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

.mandos-banner-info{
    position:absolute;
    width: 30%;  
    padding: 5rem;
    right: 0;
    top: 15%;
    display: none;
    animation: opacityIn 1s ease-in-out;
}

.mandos-banner-info h3 {
    font-family: "gotham-medium", sans-serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: .3rem;
    position: relative;
    margin-top: 0;
    margin-bottom: 0.7rem;
    margin-left: 0px;
}

.mandos-banner-info h1 {
    font-family: "gotham-medium", sans-serif;
    font-size: 3rem;
    line-height: 1.333;
    margin-top: 0;
    color: #FFFFFF;
}

.mandos-banner-info .s-remote-btn{
    margin-top: 1rem;
}

.mandos-banner-info .btn {
    width: 200px;
    border-color: #FFFFFF;
    color: #FFFFFF;
    margin: 1.5rem 1.5rem 0 0;
    letter-spacing: .25rem;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}


@media only screen and (max-width: 800px) {


    .mandos-banner-info .btn {
        border-color: black;
        color: black;

    }    

    .mandos-banner-info h3{

        color: #00000095;
    }

    .mandos-banner-info h1 {
        color: black;
    }


    .mandos-banner .video-container{
        height: auto;
    }

    .mandos-banner-info{
        position:static;
        width: 100%;  
        display: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        animation: opacityIn 1s ease-in-out;
        text-align: center;
    }
}


/* ------------------------------------------------------------------- 
 * ## key banner info
 * ------------------------------------------------------------------- */

 @keyframes opacityIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

.key-banner-info{
    position:absolute;
    width: 33%;  
    padding: 5rem;
    right: 0;
    bottom: 5%;
    display: none;
    animation: opacityIn 1s ease-in-out;
}

.key-banner-info h3 {
    font-family: "gotham-medium", sans-serif;
    font-size: 1.6rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: .3rem;
    position: relative;
    margin-top: 0;
    margin-bottom: 0.7rem;
    margin-left: 0px;
}

.key-banner-info h1 {
    font-family: "gotham-medium", sans-serif;
    font-size: 3rem;
    line-height: 1.333;
    margin-top: 0;
    color: #000000;
}

.key-banner-info .s-remote-btn{
    margin-top: 1rem;
}

.key-banner-info .btn {
    width: 200px;
    border-color: #000000;
    color: #000000;
    margin: 1.5rem 1.5rem 0 0;
    letter-spacing: .25rem;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}


@media only screen and (max-width: 800px) {


    .key-banner-info .btn {
        border-color: black;
        color: black;

    }    

    .key-banner-info h3{

        color: #00000095;
    }

    .key-banner-info h1 {
        color: black;
    }


    .key-banner .video-container{
        height: auto;
    }

    .key-banner-info{
        position:static;
        width: 100%;  
        display: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        animation: opacityIn 1s ease-in-out;
        text-align: center;
    }
}

/* ------------------------------------------------------------------- 
 * ## key house
 * ------------------------------------------------------------------- */

    .s-key-house{
        height: auto;
        padding-top: 12rem;
    }

    .s-key-house-desc {
        font-family: "gotham-ligth", sans-serif;
        color: black;
    }


    .s-key-house-image{
        height: auto;
    }
    

    .s-key-house-image .prueba {
        width: 100%;
    }


    .s-key-house-image img{  
        display: block;     
        width: 100%;
    }

    @media only screen and (max-width: 800px) {
        .s-key-house-image{
            margin-top: 8rem;
            height: auto;
        }
    }



/* ------------------------------------------------------------------- 
 * ## key process
 * ------------------------------------------------------------------- */

 .s-key-process{
    height: auto;
    padding-top: 12rem;
    background-color: #000000BB;
    
    padding-top: 24rem;
    padding-bottom: 24rem;
}

.s-key-process-desc {
    font-family: "gotham-ligth", sans-serif;
    color: white;
    margin-bottom: 24.8rem;
}

.s-key-process-graph{
    position: relative;
    width: 40%;
    margin-left: 30%;
    margin-right: 30%;

}

.key-graph-start {
    height: 8px;
    width: 50%;
    background-color: white;
}



.key-graph-end {
    height: 8px;
    width: 50%;
    background-color: white;
}



.key-graph-start-vertical {
    display: block;
    width: 8px;
    height: 10.2rem;
    background-color: white;
    position: absolute;
    left: 50%;
    top: calc(8px - 10.2rem);
    margin-left: -1px;
}

.key-graph-start-vertical .dot {
    position: relative;
    height: 26px;
    width: 26px;    
    border-radius: 50%;
    display: inline-block;
    background-color: white;
    left: -9px;
    top: -10.2px;
}


.key-graph-end-vertical {
    display: block;
    width: 8px;
    height: 10.2rem;
    background-color: white;
    position: absolute;
    left: 50%;
    bottom: calc(8px - 10.2rem);
    margin-left: -1px;
}

.key-graph-end-vertical .dot {
    position: relative;
    height: 26px;
    width: 26px;    
    border-radius: 50%;
    display: inline-block;
    background-color: white;
    left: -9px;
    top: 10.2rem;
}

.key-graph-separator {
    height: 8px;
    width: 100%;
    background-color: white;
}

.key-graph-circle {
    border: 8px solid white ;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    background-color: #444444 ;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.key-graph-text {
    height: 200px;
    width: auto;
    background-color: #444444 ;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.key-graph-left-icon {
    position: relative;
    height: 250px;
    border-left: 8px solid white;
}

.key-graph-right-icon {
    position: relative;
    height: 250px;
    border-right: 8px solid white;
}

.key-graph-left-icon .key-graph-circle {
    position: relative;
    transform: translate(-104px, 17px);
}

.key-graph-text {
    font-family: "gotham-medium", sans-serif;
    color: white;
    font-size: 2.5rem;
}

.key-graph-text .highlight{
    color: var(--color_kaptia);
}

.key-graph-text .little{
    font-family: "gotham-light", sans-serif;
    font-size: 2rem;
}

.key-graph-left-icon .key-graph-text {
    position: absolute;
    top: 10%;
    left: 125px;
}

.key-graph-left-icon .key-graph-text-title,
.key-graph-left-icon .key-graph-text-desc {
    width: 100%;
    text-align: left;
}


.key-graph-right-icon .key-graph-text-title,
.key-graph-right-icon .key-graph-text-desc {
    width: 100%;
    text-align: right;
}

.key-graph-right-icon .key-graph-text {
    position: absolute;
    top: 10%;
    right: 125px;
    text-align: right;
}

.key-graph-right-icon .key-graph-circle {
    position: relative;
    float: right;
    transform: translate(104px, 17px);
}

.key-graph-icon{
    width: 40%;
    height: 40%;
    margin-bottom: 10px;
}

.key-graph-title{
    width: 60%;
    height: 20%;
    color: white;
    text-align: center;
    font-family: "gotham-medium-italic", sans-serif;
}

@media only screen and (max-width: 800px) {
    .key-graph-circle {
        border: 8px solid white ;
        border-radius: 50%;
        height: 160px;
        width: 160px;
        background-color: #444444 ;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .s-key-process-graph{
        position: relative;
        width: 54%;
        margin-left: 23%;
        margin-right: 23%;    
    }

    .key-graph-text {
        font-family: "gotham-medium", sans-serif;
        color: white;
        font-size: 1.5rem;
    }
    
    .key-graph-text .highlight{
        color: var(--color_kaptia);
    }
    
    .key-graph-text .little{
        font-family: "gotham-light", sans-serif;
        font-size: 1rem;
    }

    .key-graph-left-icon .key-graph-circle {
        position: relative;
        transform: translate(-88px, 38px);
    }

    .key-graph-right-icon .key-graph-circle {
        position: relative;
        float: right;
        transform: translate(88px, 38px);
    }

    .key-graph-icon{
        width: 25%;
        height: 25%;
        margin-bottom: 10px;
    }

    .key-graph-title{
        font-size: 1.5rem;
    }

    .key-graph-text {
        height: 200px;
        width: 200px;
        background-color: #444444 ;
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
    }

    .key-graph-right-icon .key-graph-text {
        right: 100px;
    }

    .key-graph-left-icon .key-graph-text {
        left: 100px;
    }
}



/* ------------------------------------------------------------------- 
 * ## mandos banner info
 * ------------------------------------------------------------------- */

 @keyframes opacityIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

.ukard-banner-info{
    position:absolute;
    width: 40%;  
    padding: 5rem;
    right: 5%;
    top: 15%;
    display: none;
    animation: opacityIn 1s ease-in-out;
}

.ukard-banner-info h3 {
    font-family: "gotham-medium", sans-serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: .3rem;
    position: relative;
    margin-top: 0;
    margin-bottom: 0.7rem;
    margin-left: 0px;
}

.ukard-banner-info h1 {
    font-family: "gotham-medium", sans-serif;
    font-size: 3rem;
    line-height: 1.333;
    margin-top: 0;
    color: #FFFFFF;
}

.ukard-banner-info .s-remote-btn{
    margin-top: 1rem;
}

.ukard-banner-info .btn {
    width: 200px;
    border-color: #FFFFFF;
    color: #FFFFFF;
    margin: 1.5rem 1.5rem 0 0;
    letter-spacing: .25rem;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 800px) {


    .ukard-banner-info .btn {
        border-color: black;
        color: black;

    }    

    .ukard-banner-info h3{

        color: #00000095;
    }

    .ukard-banner-info h1 {
        color: black;
    }


    .product-banner .video-container{
        height: auto;
    }

    .ukard-banner-info{
        position:static;
        width: 100%;  
        display: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        animation: opacityIn 1s ease-in-out;
        text-align: center;
    }

    
}


/* ------------------------------------------------------------------- 
 * ## receptores banner info
 * ------------------------------------------------------------------- */

 @keyframes opacityIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

.receptores-banner-info{
    position:absolute;
    width: 40%;  
    padding: 5rem;
    left: 5%;
    top: 40%;
    display: none;
    animation: opacityIn 1s ease-in-out;
}

.receptores-banner-info h3 {
    font-family: "gotham-medium", sans-serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: .3rem;
    position: relative;
    margin-top: 0;
    margin-bottom: 0.7rem;
    margin-left: 0px;
}

.receptores-banner-info h1 {
    font-family: "gotham-medium", sans-serif;
    font-size: 3rem;
    line-height: 1.333;
    margin-top: 0;
    color: #FFFFFF;
}

.receptores-banner-info .s-remote-btn{
    margin-top: 1rem;
}

.receptores-banner-info .btn {
    width: 200px;
    border-color: #FFFFFF;
    color: #FFFFFF;
    margin: 1.5rem 1.5rem 0 0;
    letter-spacing: .25rem;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 800px) {


    .receptores-banner-info .btn {
        border-color: black;
        color: black;

    }    

    .receptores-banner-info h3{

        color: #00000095;
    }

    .receptores-banner-info h1 {
        color: black;
    }


    .product-banner .video-container{
        height: auto;
    }

    .receptores-banner-info{
        position:static;
        width: 100%;  
        display: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        animation: opacityIn 1s ease-in-out;
        text-align: center;
    }
}





/* ------------------------------------------------------------------- 
 * ## section header
 * ------------------------------------------------------------------- */
 .section-header {
    text-align: center;
    position: relative;
    margin-bottom: 3.6rem;
    max-width: 960px;
}

.section-header.has-bottom-sep {
    padding-bottom: 2.1rem;
    position: relative;
}

.section-header.has-bottom-sep::before {
    content: "";
    display: inline-block;
    height: 1px;
    width: 80%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section-header.has-bottom-sep.light-sep::before {
    background-color: rgba(255, 255, 255, 0.30);
}




/* ===================================================================
 * # home 
 *
 * ------------------------------------------------------------------- */
.s-home {
    width: 100%;
    height: 100%;
    min-height: 786px;
    background-color: transparent;
    position: relative;
    display: table;
    background-image: url("../images/puerta-coche-final-buena.png");
    background-size: cover;
    background-position: center center;
}

.s-home .shadow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000', GradientType=0);
}

.s-home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #000000;
}

.no-js .s-home {
    background: #000000;
}




/* ------------------------------------------------------------------- 
 * ## home content
 * ------------------------------------------------------------------- */
.home-content {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    padding-bottom: 15.6rem;
    position: relative;
    overflow: hidden;
}

.home-content h3 {
    font-family: "gotham-medium", sans-serif;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: .3rem;
    position: relative;
    margin-top: 0;
    margin-bottom: 1.2rem;
    margin-left: 6px;
}

.home-content h1 {
    font-family: "gotham-medium", sans-serif;
    font-size: 6.3rem;
    line-height: 1.333;
    margin-top: 0;
    color: #FFFFFF;
}

.home-content__main {
    padding-top: 12rem;
    position: relative;
    max-width: 1000px;
}

.home-content__buttons {
    padding-top: 6rem;
    text-align: left;
}

.home-content__buttons .btn {
    width: 250px;
    border-color: #FFFFFF;
    color: #FFFFFF;
    margin: 1.5rem 1.5rem 0 0;
    letter-spacing: .25rem;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.home-content__buttons .btn:last-child {
    margin-right: 0;
}

.home-content__buttons .btn:hover, 
.home-content__buttons .btn:focus {
    background: #FFFFFF !important;
    color: #000000;
}

.home-content__scroll {
    position: absolute;
    right: 9.5rem;
    bottom: 8.4rem;
}

.home-content__scroll a {
    font-family: "gotham-bold", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .3rem;
    color: #FFFFFF;
    position: relative;
    display: inline-block;
    line-height: 3rem;
    padding-left: 2.5rem;
}

.home-content__scroll a::before {
    border-bottom: 2px solid var(--color_kaptia);
    border-right: 2px solid var(--color_kaptia);
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    margin-top: -6px;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.home-content__line {
    display: block;
    width: 2px;
    height: 10.2rem;
    background-color: var(--color_kaptia);
    position: absolute;
    right: 7.2rem;
    bottom: 0;
}


/* ------------------------------------------------------------------- 
 * ## home social 
 * ------------------------------------------------------------------- */
.home-social {
    font-family: "gotham-thin", sans-serif;
    list-style: none;
    margin: 0;
    position: absolute;
    top: 50%;
    right: 5.4rem;
    -webkit-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.home-social a {
    color: white;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.home-social li {
    position: relative;
    padding: .9rem 0;
}

.home-social li a {
    display: block;
    width: 33px;
    height: 33px;
}

.home-social i, .home-social span {
    position: absolute;
    top: 0;
    line-height: 33px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.home-social i {
    font-size: 24px;
    right: 0;
    text-align: center;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: calc(35px - 4px);
    border: 2px solid #FFFFFF;
    border-radius: 60%;
}

.home-social span {
    color: var(--color_kaptia);
    right: 4.5rem;
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.home-social li:hover span {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


/* animate .home-content__main
 * ------------------------------------------------------------------- */
html.cl-preload .home-content__main {
    opacity: 0;
}

html.cl-loaded .home-content__main {
    animation-duration: 2s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

html.no-csstransitions .home-content__main {
    opacity: 1;
}


/* ------------------------------------------------------------------- 
 * ## home animations
 * ------------------------------------------------------------------- */


/* fade in */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 150%, 0);
        -ms-transform: translate3d(0, 150%, 0);
        transform: translate3d(0, 150%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 150%, 0);
        -ms-transform: translate3d(0, 150%, 0);
        transform: translate3d(0, 150%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}


/* fade out */

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -150%, 0);
        -ms-transform: translate3d(0, -150%, 0);
        transform: translate3d(0, -150%, 0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -150%, 0);
        -ms-transform: translate3d(0, -150%, 0);
        transform: translate3d(0, -150%, 0);
    }
}


/* ------------------------------------------------------------------- 
 * responsive:
 * home
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1500px) {
    .home-content h1 {
        font-size: 6rem;
    }
    .home-content__main {
        max-width: 1000px;
    }

    .s-home {
        background-position: center right;
    }
}

@media only screen and (max-width: 1200px) {
    .home-content h1 {
        font-size: 5.5rem;
    }
    .home-content__main {
        max-width: 800px;
    }
}

@media only screen and (max-width: 1000px) {
    .home-content h1 {
        font-size: 4.6rem;
    }
    .home-content br {
        display: none;
    }
    .home-content__main {
        padding-top: 21rem;
        padding-right: 80px;
        max-width: 680px;
    }
}

@media only screen and (max-width: 800px) {
    .home-content h3 {
        font-size: 1.5rem;
    }
    .home-content h1 {
        font-size: 4rem;
    }
    .home-content__main {
        padding-right: 70px;
        max-width: 550px;
    }
}

@media only screen and (max-width: 800px) {
    .home-content__main {
        max-width: 490px;
    }
    .home-content__buttons {
        padding-top: 1.2rem;
        text-align: center;
    }
    .home-content__buttons .btn {
        display: block;
        width: 70%;
        margin: 1.5rem 0 0 0;
    }
    .home-social {
        right: 4rem;
    }
    .home-content__scroll {
        right: 7.5rem;
    }
    .home-content__line {
        right: 5.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .home-content h1 {
        font-size: 3.8rem;
    }
    .home-social {
        right: 2rem;
    }
    .home-social li {
        padding: .6rem 0;
    }
    .home-social i {
        font-size: 17px;
        border: none;
    }
    .home-social span {
        display: none;
    }
    .home-content__scroll {
        bottom: 5.4rem;
    }
    .home-content__line {
        height: 7.2rem;
    }
}

@media only screen and (max-width: 500px) {
    .s-home {
        min-height: 642px;
    }
    .home-content h1 {
        font-size: 3.5rem;
    }
    .home-content__main {
        text-align: center;
        max-width: none;
        padding-top: 15rem;
        padding-right: 25px;
        width: 85%;
    }
    .home-content__buttons {
        padding-top: 1.2rem;
    }
    .home-content__buttons .btn {
        width: auto;
        margin: 1.5rem 0 0 0;
    }
    .home-social {
        display: none;
    }
}

@media only screen and (max-width: 450px) {
    .home-content h1 {
        font-size: 3.3rem;
    }
}

@media only screen and (max-width: 400px) {
    .s-home {
        min-height: 630px;
    }
    .home-content h1 {
        font-size: 3.2rem;
    }
    .home-content__main {
        padding-top: 16.2rem;
        width: auto;
    }
}


/* ===================================================================
 * # products
 *
 * ------------------------------------------------------------------- */

 .s-products {
    width: 100%;
    min-height: 786px;
    background-color: transparent;
    position: relative;
    background-color: #FFFFFF;
    color: #010507;
    position: relative;
    padding-bottom: 12rem;
    padding-top: 6rem;
}

.s-products h1 {
    
    padding: auto;

}

.rayita {
    height: 1px;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.20) 20%, rgba(0,0,0,0.20) 80%, rgba(0,0,0,0) 100%);
    margin: 2rem 30%;
}

.s-products__header{
    text-align: center;
    height: 20rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;

}

/* .s-products__content{
    height: 80%;
}


.s-products_product {

    float: left;
    width: 50%;
    height: 50%;

}

.s-products_product.inverse .s-products_product_img {
    float: right;
}

.s-products_product_img {
    width: 50%;
    height: 100%;
    float: left;
    overflow: hidden;
}

.s-products_product_img img {
    height: 102%;
    width: 102%;
}

.s-products_product_description {
    position: relative;
    width: 50%;
    height: 100%;
    float: left;
    background-color: #353535;
    padding: 4rem;
}

.s-products_product .product-title{
    color: white;
    font-family: "gotham-medium", sans-serif;
    padding-bottom: 2rem;
    border-bottom: white 1px solid;   

}

.s-products_product .product-description{
    color: white;
    font-family: "gotham-thin", sans-serif;
    padding-top: 2rem;
}

.s-products_product .product-description-2{
    color: white;
    font-family: "gotham-thin", sans-serif;
    padding-top: 2rem;
}


.s-products_product .btn {
    color: white;
    border-color: white;
    position: absolute;
    bottom: 0;
    margin-bottom: 3rem;
}

.products-desc {
    font-size: 2.4rem;
    line-height: 1.75;
    text-align: center;
    max-width: 1024px;
} */




.s-products_product{
    position: relative;
    width: 70%;
    height: 28rem;
    margin: 0 auto;
}

.s-products_product_description{
    position: absolute;
    left: 60%;
    width: 40%;
    height: 100%;
    color: black;
    top:0;
    z-index: 5000;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.s-products_product_description_reverse{
    position: absolute;
    right: 55%;
    width: 40%;
    height: 100%;
    color: black;
    top:0;
    z-index: 5000;
    text-align: right;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items:end;
}


.s-products_product_img {
    height: 100%;
    float: left;
    overflow: hidden;
}

#product-img-klever {
    position: relative;
    width: 100%;
}


#product-img-mandos {
    position: relative;
    width: 100%;
}

#product-img-rfid {
    position: relative;
    top: -13px;
    width: 100%;
}

#product-img-receptor {
    position: relative;
    width: 100%;
}


.s-products_product .product-title{
    color: black;
    font-family: "gotham-black", sans-serif;
    padding-bottom: 1rem; 
    opacity: 0.5;
    text-transform:uppercase;
    font-size: 2.2rem;
}

.product-details-container .product-title.modules {
    font-family: "orbitron", sans-serif;
    font-size: 2.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0;
}

.product-details-container .product-title.modules .highligth {
    font-size: 3.5rem;
}

.s-products_product .product-description{
    color: black;
    font-family: "gotham-medium", sans-serif;
    opacity: 0.9;
    font-size: 2.2rem;
    margin-bottom: 2rem;        
}

.s-products_product .product-description-2{
    color: black;
    font-family: "gotham-light", sans-serif;
    padding-top: 2rem;
}


.s-products_product .btn {
    color: black;
    border-color: black;
    position: relative;
    width: 60%;    
}


.products-desc {
    font-size: 2.4rem;
    line-height: 1.75;
    text-align: center;
    max-width: 1024px;
}

@media only screen and (max-width: 800px) {
    .s-products {
        height: auto;
    }
    .home-content h1 {
        font-size: 3.2rem;
    }
    .s-products__content {
        padding-top: 0;
        width: auto;
    }

    .s-products__header{
        height: 8rem;
        margin-bottom: 2rem;
    }

    .s-products_product{
        position: relative;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    

    .s-products_product .product-title{
        text-align: center;
    }

    .s-products_product_description,
    .s-products_product_description_reverse{
        position: static;
        width: 100%;
        height: 50%;
        color: black;
        z-index: 5000;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .s-products_product .product-description{
        text-align: center;
    }
    
    
    .s-products_product_img {
        
        float: none;
        overflow: hidden;
        height: auto;
    }
    
    #product-img-klever {
        position: relative;
        width: 200%;
        max-width: 200%;        

    }
    
    
    #product-img-mandos {
        position: relative;        
        width: 200%;
        right: 100%;
        max-width: 200%;
    }
    
    #product-img-rfid {
        position: relative;
        width: 200%;
        max-width: 200%;
        right: 100%;
    }
    
    #product-img-receptor {
        position: relative;
        width: 200%;
        max-width: 200%;
    }

}




/* ===================================================================
 * # about
 *
 * ------------------------------------------------------------------- */
 .s-about {
    height: 100%;
    padding-top: 9.2rem;
    padding-bottom: 9.2rem;
    background-color: var(--color_kaptia);
    color: #010507;
    position: relative;
}




.about-desc {
    font-size: 2.4rem;
    line-height: 1.75;
    text-align: center;
    max-width: 1024px;
}


@media only screen and (max-width: 800px) {

    .s-about {
        height: auto;
        padding-top: 16.2rem;
        padding-bottom: 16.2rem;
        background-color: var(--color_kaptia);
        color: #010507;
        position: relative;
    }

}


/* ===================================================================
 * # s what products
 *
 * ------------------------------------------------------------------- */
 .s-what-product {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: var(--color_kaptia);
    font-family: "gotham-light", sans-serif;
    color: #010507;
    position: relative;
}

.s-what-product a {
    text-decoration: underline;
}

.s-what-product a:hover,
.s-what-product a:active,
.s-what-product a:focus {
    color: #010507;
}


.what-product-desc {
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
    max-width: 1024px;
}

.what-product-desc p {
    margin-bottom: 2.5rem;
}

.what-product-desc .highligth {
    color: white;
}


@media only screen and (max-width: 800px) {

    .s-what-product {
        height: auto;
        padding-top: 16.2rem;
        padding-bottom: 16.2rem;
        background-color: var(--color_kaptia);
        color: #010507;
        position: relative;
    }

}


/* ===================================================================
 * # s klver duplicadora
 *
 * ------------------------------------------------------------------- */
 .s-klever-duplicadora {
    padding-top: 7rem;
    padding-bottom: 0rem;
    background-color: #343434;
    font-family: "gotham-light", sans-serif;
    color: #010507;
    position: relative;
}


.s-klever-duplicadora .highligth {
    color: var(--color_kaptia);
}

.s-klever-duplicadora-desc {
    font-size: 2rem;
    line-height: 1.75;
    text-align: center;
    max-width: 1024px;
    height: 10rem;
    color: #FFFFFF;
}


.s-klever-duplicadora-images {
    text-align: center;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
}

.s-klever-duplicadora-images .col-full {
    height: 100%;
    padding: 0;    
}

.s-klever-duplicadora-desc .highligth {
    color: var(--color_kaptia);
}

.s-klever-duplicadora-container {
    display: inline-block;
    width: 15%;
    height: 100%;
}

.s-klever-duplicadora-img {
    margin-top: 5rem;
}



.s-klever-duplicadora-logo {
    height: 30%;
    font-size: 3rem;
    text-align: center;
    font-family: "caflish-script", sans-serif;
}

.s-klever-duplicadora p{
    margin-bottom: 2.5rem;
}


@media only screen and (max-width: 800px) {

    .s-klever-duplicadora-container {
        width: 40%;
    }

    .s-klever-duplicadora-desc {
        height: auto;
        margin-top: 5rem;
    }

    .s-klever-duplicadora-images {
        margin-top: 5rem;
    }

    .s-klever-duplicadora-img {
        position: relative;
        overflow: hidden;
    }

    .s-klever-duplicadora-img img {
        position: relative;
        width: 200%;
        max-width: 200%;
        left: -50%;
    }

}


/* ===================================================================
 * # s klver remotes
 *
 * ------------------------------------------------------------------- */
 .s-klever-remotes {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: white;
    font-family: "gotham-light", sans-serif;
    color: #010507;
    position: relative;
}


.s-klever-remotes .highligth {
    color: var(--color_kaptia);
}

.s-klever-remotes-desc {
    font-size: 2rem;
    line-height: 1.75;
    text-align: center;
    max-width: 1024px;
}

.s-klever-remotes-desc a {
    color: var(--color_kaptia);
}

.s-klever-remotes-desc a:hover {
    color: #00000095;
}


.s-klever-remotes-images {
    text-align: center;
    margin-top: 2rem;
}

.s-klever-remotes-images .col-full {
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 3rem;
}

.s-klever-remotes-desc .highligth {
    color: white;
}

.s-klever-remote-container {
    display: inline-block;
    width: 20%;
    height: 100%;
}

.s-klever-remote-container a {
    color:#000000;
}

.s-klever-remote-container .enlace-unik:hover{
    color: var(--color_unik);
}

.s-klever-remote-container .enlace-simply:hover{
    color: var(--color-simplyII);
}

.s-klever-remote-container .enlace-ff:hover{
    color: var(--color_ff);
}

.s-klever-remote-container .enlace-evo:hover{
    color: var(--color-evo);
}

.s-klever-remote-img {
    width: 90%;
}

.s-klever-remote-logo {
    height: 30%;
    font-size: 3rem;
    text-align: center;
    font-family: "caflish-script", sans-serif;
}


@media only screen and (max-width: 800px) {

    .s-klever-remote-container {
        width: 40%;
    }

    .s-klever-remotes-desc {
        height: auto;
        margin-top: 5rem;
    }

    .s-klever-remotes-images {
        margin-top: 5rem;
    }

}


/* ===================================================================
 * # s klver modules
 *
 * ------------------------------------------------------------------- */
 .s-klever-modules {
    padding-top: 7rem;
    padding-bottom: 7rem;
    background-color: white;
    font-family: "gotham-light", sans-serif;
    color: #010507;
    position: relative;
    margin-bottom: 9rem;
}


.s-klever-modules .highligth {
    color: var(--color_kaptia);
}


.s-klever-modules-desc {
    font-size: 2rem;
    line-height: 1.75;
    text-align: center;
    height: 10rem;
    
}


.s-klever-modules-images {
    text-align: center;
    height: 40rem;
    margin-top: 2rem;
}

.s-klever-modules-images .col-full {
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 3rem;
}

.s-klever-modules-desc .highligth {
    color: var(--color_kaptia);
}

.s-klever-modules-container {
    display: inline-block;
    width: 22%;
    height: 100%;
}

.s-klever-module-img {
    height: 50%;
}

.s-klever-module-title {
    font-size: 1.5rem;
    text-align: center;
    font-family: "gotham-medium", sans-serif;

}

.s-klever-module-desc {
    height: 25%;
    font-size: 1.5rem;
    text-align: center;
}

.s-klever-modules-desc p {
    margin-bottom: 2.5rem;
}

.s-klever-module-title {
    color: var(--color_kaptia);
    font-weight: 700;
    font-size: 2.1rem;
}

.s-klever-module-desc {
    font-size: 1.75rem;
}




@media only screen and (max-width: 800px) {

    .s-klever-modules-container {
        width: 60%;
    }

    .s-klever-modules-desc {
        height: auto;
        margin-top: 2rem;
    }

}


/* ===================================================================
 * # s klver youtube
 *
 * ------------------------------------------------------------------- */
 .s-youtube {
    padding-top: 9rem;
    padding-bottom: 9rem;
    background-color: #00000088;
    font-family: "gotham-light", sans-serif;
    color: white;
    position: relative;
}

.s-youtube .col-full {

    display: flex;
    justify-content: center;
    text-align: center;

}


.s-youtube-logo {
    width: 35%;
}


/* ===================================================================
 * # s klver descargas
 *
 * ------------------------------------------------------------------- */
 .s-klever-descargas {
    padding-top: 9rem;
    padding-bottom: 9rem;
    background-color: white;
    font-family: "gotham-light", sans-serif;
    color: white;
    position: relative;
}

.s-klever-descargas .col-full {

    display: flex;
    justify-content: center;
    text-align: center;

}

.s-klever-descargas-title {
    margin-bottom: 5rem;
}


.s-klever-descargas .boton-descarga{
    margin: 15px;
}



@media only screen and (max-width: 800px) {

    .s-klever-especificaciones table {
        width: 95%;
    }

    .s-klever-descargas .pdf-button,
    .s-klever-descargas .windows-button,
    .s-klever-descargas .android-button {
        width: 100%;
    }

    .s-klever-descargas .boton-descarga {
        margin: 0;

    }

    .s-klever-descargas .col-full{
        flex-direction: column;
        gap: 15px;
    }

}


/* ------------------------------------------------------------------- 
 * ## ukard tags
 * ------------------------------------------------------------------- */

.s-ukard-container {
    display: inline-block;
    width: 20%;
    overflow: hidden;
}

.s-kard-images {
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.s-kard-images .col-full{
    text-align: center;
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 3rem;
}

.s-ukard-tag-img {
    position: relative;
    width: 120%;
    max-width: 120%;
    left: -10%;

}


@media only screen and (max-width: 800px) {

    .s-ukard-container {
        width: 70%;
    }

}


/* ===================================================================
 * # s kard devices
 *
 * ------------------------------------------------------------------- */
 .s-kard-devices {
    padding-top: 2rem;
    padding-bottom: 1rem;
    background-color: white;
    font-family: "gotham-light", sans-serif;
    color: #010507;
    position: relative;
    margin-bottom: 9rem;
}


.s-kard-devices .highligth {
    color: var(--color_kaptia);
}


.s-kard-devices-desc {
    font-size: 2rem;
    line-height: 1.75;
    text-align: center;
    height: 10rem;
    
}


.s-kard-devices-images {
    text-align: center;
    height: 40rem;
    margin-top: 2rem;
}

.s-kard-devices-images .col-full {
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 3rem;
}

.s-kard-devices-desc .highligth {
    color: white;
}

.s-kard-devices-container {
    display: inline-block;
    width: 22%;
    height: 100%;
}

.s-kard-devices-img {
    height: 40%;
    overflow: hidden;
}

.s-kard-devices-img .ukard-reader{
    position: relative;
    top: -10px;
    height: 100%;
}

.s-kard-devices-img .kard-prog{
    position: relative;
    top: -30px;
}

.s-kard-devices-img .kard-programming-tool{
    position: relative;
    top: -10px;
}

.s-kard-devices-title {
    height: 20%;
    font-size: 1.5rem;
    text-align: center;
    font-family: "gotham-medium", sans-serif;

}

.s-kard-devices-desc {
    height: 25%;
    font-size: 1.5rem;
    text-align: center;
}




@media only screen and (max-width: 800px) {

    .s-kard-devices-container {
        width: 70%;
    }

    .s-kard-devices-desc {
        height: auto;
        margin-top: 2rem;
    }

}


/* ------------------------------------------------------------------- 
 * ## ukard key
 * ------------------------------------------------------------------- */

 .s-key {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    background-color: #000000CC;
    font-family: "gotham-light", sans-serif;
    color: white;
    position: relative;
}

.s-key .row {
    max-width: 1400px;
}

.s-key-btn {
    color: white;
}

.s-key .col-full {

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.s-key .col-full-column{
    float: left;
}

.s-key .col-full-column.one{
    width: 60%;
}

.s-key .col-full-column.two{
    width: 40%;
}

.s-key-icon svg{
    height: 20rem;
}

.s-key-img {
    width: 120%;
    max-width: 120%;
}

.s-key-btn {
    margin-top: 3rem;
}


.s-key-desc {
    font-family: "gotham-ligth", sans-serif;
}


.s-key-desc .highligth {
    font-family: "gotham-black", sans-serif;
    font-size: 2.5rem;
}


@media only screen and (max-width: 800px){

    .s-key .col-full {

        display: block;
    
    }

    .s-key .col-full-column{
        float: none;
    }
    
    .s-key .col-full-column.one{
        width: 100%;
    }
    
    .s-key .col-full-column.two{
        width: 100%;
    }

    .s-key-img {
        width: 100%;
        max-width: 120%;
    }

}


/* ------------------------------------------------------------------- 
 * ## s remotes 
 * ------------------------------------------------------------------- */

 .s-remotes {
    padding-top: 9rem;
    padding-bottom: 4.5rem;
    font-size: 2rem;
    background-color: white;
    font-family: "gotham-light", sans-serif;
    color: white;
    position: relative;
}

.s-remotes .row {
    max-width: 1400px;
}

.s-remotes-column {
    
    float: left;
    width: 50%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-right: 4rem;
}

.s-remote-img, .s-remote-info {
    width: 50%;
    float: left;
    
}

.s-remote-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-remote-img img {
    width: 85%;
}


.s-remotes-desc {
    color: #000;
}

.s-remote-desc p{
    margin-bottom: 15px;
}

.s-remote-info {
    padding-top: 4rem;
    padding-bottom: 4rem;
    color: black;
}

.s-remote-title {
    color:black;
    border-bottom: black 1px solid;
    font-family: "caflish-script", sans-serif;
    font-size: 5rem;
    line-height: 4rem;
}

.s-remote-excl {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.s-remote-excl .logo {
    font-family: "caflish-script", sans-serif;
    color: var(--color_kaptia);
    font-size: 3rem;
}

.s-remote-btn{
    margin-top: 5rem;
}

.dot {
    height: 25px;
    width: 25px;
    
    border-radius: 50%;
    display: inline-block;
}

.unik {
    background-color: var(--color_unik);
}

.simply {
    background-color: var(--color-simplyII);
}

.fvd {
    background-color: var(--color_ff);
}

.ff {
    background-color: var(--color_ff);
}

.evo {
    background-color: var(--color-evo);
}


@media only screen and (max-width: 800px){
    .s-remotes-column {
        width: 100%;
        padding: 0;
    }

    .s-remote-img {
        width: 100%;
        text-align: center;
    }

    .s-remote-img img {
        width: 50%;
    }

    .s-remote-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .s-remote-desc {
        text-align: center;
    }

    
}


/* ------------------------------------------------------------------- 
 * ## s-remotes-custom
 * ------------------------------------------------------------------- */

 .s-remotes-custom {
    position: relative;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    background-color: #FFFFFF;
    font-family: "gotham-light", sans-serif;
    color: black;
    position: relative;
}

.s-remotes-custom-img {
    width: 100%;
    height: 60rem;
    overflow: hidden;
}


.s-remotes-custom-img img {
    position: relative;
    top: -37%;
}

.s-remotes-custom-desc{
    font-size: 2rem;
    line-height: 1.75;
    text-align: center;
    max-width: 1024px;
    height: 10rem;
}

.s-remotes-custom-desc-btn{
    margin-top: 30px;
}


.s-klever-remotes-custom-images {
    text-align: center;
    height: 48rem;
    margin-top: 8rem;
    padding: 5rem;
}

.s-klever-remotes-custom-images .col-full {
    height: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 3rem;
}

.s-klever-remote-custom-container {
    position: relative;
    left: -20px;
    display: inline-block;
    width: 22%;
    height: 100%;
}

.s-klever-remote-custom-container img {
    height: 100%;
}


@media only screen and (max-width: 800px){

    .s-remotes-custom-img {
        width: 180%;
        height: 20rem;
    }

    .s-remotes-custom-img img {
        top:-68%;
        left: -62px;
    }

    .s-remotes-custom-desc{
        position: relative;
        width: 100%;
        right: 0;   
        height: auto;    
    }

    .s-remotes-custom-desc h1{
        text-align: center;
    }

    .s-remotes-custom-desc-text{
        text-align: center;
    } 

    .s-remotes-custom-desc-btn{
        text-align: center;
        margin-top: 30px;
    }

    .s-klever-remote-custom-container {
        width: 75%;
    }

    .s-klever-remotes-custom-desc {
        height: auto;
        margin-top: 5rem;
    }

    .s-klever-remotes-custom-images {
        margin-top: 5rem;
    }
}


/* ------------------------------------------------------------------- 
 * ## s receptores 
 * ------------------------------------------------------------------- */

 .s-receptores {
    padding-top: 9rem;
    padding-bottom: 4.5rem;
    background-color: white;
    font-family: "gotham-light", sans-serif;
    color: white;
    position: relative;
}

.s-receptores-desc {
    font-size: 2rem;
    line-height: 1.75;
    text-align: center;
    max-width: 1024px;
    height: 10rem;
}

.s-receptores .row {
    max-width: 1200px;
}

.s-receptores-column {
    
    float: left;
    width: 100%;
    height: 60rem;
    padding: 4rem;
}


.s-receptores-desc {
    color: #000;
}


.s-receptor-img {
    position: relative;
    float: left;
    width: 65%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-receptor-img img{
    position: relative;
    max-width: 140%;
    width: 140%;
}




.s-receptor-info{
    position: relative;
    float: left;
    height: 100%;
    width: 34%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    color: black;
}


.s-receptor-title {
    color:black;
    border-bottom: black 1px solid;
    font-family: "orbitron", sans-serif;
    font-size: 4rem;
    line-height: 6rem;
}

.s-receptor-excl {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.s-receptor-excl .logo {
    font-family: "caflish-script", sans-serif;
    color: var(--color_kaptia);
    font-size: 3rem;
}

.s-receptor-btn{
    margin-top: 5rem;
}

.s-receptor-desc p {
    margin-bottom: 15px;
}


@media only screen and (max-width: 800px){
    .s-receptores-column {
        width: 100%;
        height: auto;
        padding: 0;
    }

    .s-receptor-img {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .s-receptor-img img {
        top: 0;
        width: 90%;
    }

    .s-receptor-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .s-receptor-desc {
        text-align: center;
    }

    
}

/* ------------------------------------------------------------------- 
 * ## s descargas 
 * ------------------------------------------------------------------- */


 .s-descargas-header {
    height: 15%;
    color: white;
    background-color: #00000088;
    font-family: "gotham-medium", sans-serif;
    font-size: 3rem;
    margin-top: 75px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;    
    overflow: hidden;
 }

 .s-descargas-container {
    padding: 5rem;
 }

 .descargas-producto{
    margin-bottom: 8rem;
 }

 .descargas-producto-title{
    border-bottom:  1px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(0,0,0,0), rgba(0,0,0,100), rgba(0,0,0,0));
    border-image-slice: 1;
    font-family: "gotham-bold", sans-serif;
    font-size: 3rem;
    color: #00000088;
    text-transform: uppercase;
    text-align: center;
 }

 .descargas-producto-title svg {
    width: 15%;
 }

 .descargas-producto-title .highligth{
    font-family: "gotham-medium", sans-serif;
    font-size: 4rem;
    margin-right: 15px;
 }

 .descargas-producto-buttons{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    width: 80%;
    margin: auto;
 }


 .descargas-producto-buttons a {
    min-width: 250px;
 }

 .s-descargas-header img {
    position: absolute;
    top:0;
    width: 100%;
    opacity: .5;
    z-index: 5;
}

.s-descargas-header div {
    z-index: 10;
}


@media only screen and (max-width:800px){
    .descargas-producto-title svg {
        width: 80%;
     }
}

/* ------------------------------------------------------------------- 
 * ## s product details 
 * ------------------------------------------------------------------- */


.s-product-details {
    height: 100%;
    overflow: hidden;
}

.s-product-details .product-header {
    height: 15%;
    color: white;
    background-color: #00000088;
    font-family: "gotham-medium", sans-serif;
    font-size: 3rem;
    margin-top: 75px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;    
    overflow: hidden;
    
}


.s-product-details .product-header img {
    position: absolute;
    top:0;
    width: 100%;
    opacity: .5;
    z-index: 5;
}

.s-product-details .product-header div {
    z-index: 10;
}

.s-product-details .product-details-container {
    height: 75%;
    overflow: hidden;
}

.product-details-container .product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    height: 100%;
    float: left;
    overflow: hidden;
}

.product-details-container .product-details {
    height: 100%;
    width: 60%;
    float: left;
    padding: 5rem;
}

.product-details-container .product-img video{
    position: relative;
    left: 50px;
    top:-40px;
    width: 160%;
    max-width: 160%;
    min-height: 100%;
}

.product-details-container .product-img.klever video{
    position: relative;
    left: 11px;
    top:27px;
    width: 150%;
    max-width: 160%;
    min-height: 100%;
}


.product-details-container .product-img.ukard-programming-tool video{
    position: relative;
    left: 50px;
    top:-40px;
    width: 140%;
    max-width: 160%;
    min-height: 100%;
}

.product-details-container .product-img.mando video{
    position: relative;
    left: 40px;
    top:75px;
    width: 160%;
    max-width: 160%;
    min-height: 100%;
}

.product-details-container .product-img.kard video {
    position: relative;
    left: 10px;
    top:20px;
    width: 160%;
    max-width: 160%;
    min-height: 100%;
}

.product-details-container .product-img.kard-prog video{
    position: relative;
    left: 11px;
    top: -71px;
    width: 180%;
    max-width: 180%;
    min-height: 100%;
}

.product-details-container .product-img.module video{
    position: relative;
    left: 40px;
    top:20px;
    width: 160%;
    max-width: 160%;
    min-height: 100%;
}

.product-details-container .product-title {
    font-family: "caflish-script", sans-serif;
    font-size: 6rem;
    line-height: 6rem;
    color: #000;
    padding-left: 5px;
}

.product-details-container .product-title.receiver{
    font-family: "orbitron", sans-serif;
    font-size: 5rem;
}

.product-details-container .product-description {
    color: black;
    padding-top: 3rem;
    font-family: "gotham-light", sans-serif;
    font-size: 2rem;
    height: 90%;
    width: 100%;
}

.product-details-container .product-description li {
    height: 6rem;  
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.product-details-container .product-description ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70%;    
    line-height: 7rem;
}

.product-details-container .logo {
    font-family: "caflish-script", sans-serif;
    color: var(--color_kaptia);
    font-size: 3.5rem;
    line-height: 7.8rem;
}

.product-details-container .product-documentation {
    color: black;
    padding-top: 3rem;
    font-family: "gotham-light", sans-serif;
    padding-left: 5px;
    position: absolute;
    height: 20%;
    width: 52%;
    bottom: 0px;
}

.product-details-container .product-documentation .documentation-title {
    color: #00000095;
    font-family: "gotham-light", sans-serif;
    border-bottom: #00000088 1px solid;
    margin-bottom: 3rem;
}


.dot-big {
    height: 30px;
    width: 30px;
    
    border-radius: 50%;
    display: inline-block;
}

@media only screen and (max-width:800px){

    .s-product-details {
        height: auto;
    }

    .s-product-details .product-details-container {
        height: auto;
        overflow: none;
    }
    
    .product-details-container .product-img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 30%;
        overflow: hidden;
    }

    .product-details-container .product-img.module{

        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 30rem;
        overflow: hidden;

    }

    .product-details-container .product-img.kard{

        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 35rem;
        overflow: hidden;

    }
    
    .product-details-container .product-details {
        height: auto;
        width: 100%;
        padding: 0;
    }
    
    .product-details-container .product-img video{
        position: relative;
        left: 30px;
        top:20px;
        width: 160%;
        max-width: 160%;
        min-height: 100%;
    }

    .product-details-container .product-img.module video{
        position: relative;
        left: 10px;
        top:20px;
        width: 160%;
        max-width: 160%;
        min-height: 100%;
    }

    .product-details-container .product-img.kard video{
        position: relative;
        left:5px;
        width: 160%;        
        max-width: 160%;
        min-height: 100%;
    }

    .product-details-container .product-img.mando video{
        position: relative;
        left:26px;
        top: 30px;
        width: 160%;
        max-width: 160%;
    }

    .product-details-container .product-img.klever video{
        position: relative;
        left:0px;
        top: 30px;
        width: 160%;
        max-width: 160%;
    }

    .product-details-container .product-title {
        text-align: center;
    }


    .product-details-container .product-description {
        text-align: center;
    }

    .product-details-container .product-description li {
        height: 6rem;  
        display: block;
        line-height: normal;
        margin-bottom: 3rem;
        
    }
    
    .product-details-container .product-description ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 70%;    
        line-height: 7rem;
        padding: 3rem;
        list-style: circle;
    }

    .s-producto-especificaciones{
        width: 100%;
    }


    .s-producto-especificaciones table,
    .s-producto-especificaciones tr {
        width: 90%;
    }
}


/* ===================================================================
 * # s producto especificaciones
 *
 * ------------------------------------------------------------------- */
 .s-producto-especificaciones {
    padding-top: 5rem;
    padding-bottom: 9rem;
    background-color: #00000011;
    font-family: "gotham-light", sans-serif;
    color: white;
    position: relative;
}

.s-producto-descargas {
    padding-top: 2rem;
    padding-bottom: 9rem;
}

.s-producto-especificaciones .col-full {

    display: flex;
    justify-content: center;
    text-align: center;

}

.s-producto-especificaciones{
    color: #000000AA
}

.s-producto-especificaciones table {
    width: 1024px;
}

.s-producto-especificaciones tr{
    display: inline-block;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: #00000095 1px solid;
    background-color: #00000011;
    width: 100%;
}

.s-producto-especificaciones-title {
    float:left;
    width: 50%;
    text-align: left;
    font-family: "gotham-medium", sans-serif;
    padding-left: 10px;
}

.s-producto-especificaciones-value {
    float:right;
    width: 50%;
    text-align: right;
    padding-right: 10px;
    font-family: "gotham-light", sans-serif;
}


@media only screen and (max-width:800px){


    .s-producto-especificaciones table{
        width: 100%;
    }
}





/* ------------------------------------------------------------------- 
 * ## about stats
 * ------------------------------------------------------------------- */
.about-stats {
    text-align: center;
}

.stats__col {
    margin: 5.4rem 0;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stats__col:last-child {
    border-right: none;
}

.stats__count {
    font-family: "montserrat-bold", sans-serif;
    font-size: 8.4rem;
    line-height: 1;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stats h5 {
    font-family: "montserrat-semibold", sans-serif;
    margin-top: 1.8rem;
    color: #000000;
    font-size: 1.8rem;
    line-height: 1.333;
    position: relative;
}

.about__line {
    display: block;
    width: 2px;
    height: 10.2rem;
    background-color: #FFFFFF;
    position: absolute;
    right: 7.2rem;
    top: 0;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
    .about-desc {
        font-size: 2.2rem;
        max-width: 940px;
    }
    .about-stats {
        padding-top: 3rem;
        padding-bottom: 3.9rem;
    }
    .about-stats {
        max-width: 800px;
    }
    .stats__col {
        margin: 1.5rem 0;
    }
    .stats__col:nth-child(n) {
        border: none;
    }
    .stats__col:nth-child(2n+1) {
        border-right: 1px solid rgba(255, 255, 255, 0.25);
    }
}

@media only screen and (max-width: 800px) {
    .about-desc {
        font-size: 2rem;
        max-width: 600px;
    }
    .stats__count {
        font-size: 8rem;
    }
    .stats h5 {
        margin-top: 1.2rem;
    }
}

@media only screen and (max-width: 700px) {
    .about__line {
        right: 5.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .s-about {
        padding-top: 12rem;
    }
    .about-desc {
        font-size: 1.9rem;
    }
    .about-stats {
        padding-top: 0;
    }
    .stats__col {
        margin: 0;
        padding-top: 3rem;
        padding-bottom: 3rem;
        position: relative;
    }
    .stats__col::after {
        content: "";
        display: block;
        height: 1px;
        width: 250px;
        background-color: rgba(255, 255, 255, 0.25);
        position: absolute;
        bottom: 0;
        left: 50%;
        margin-left: -125px;
    }
    .stats__col:last-child::after {
        display: none;
    }
    .stats__col:nth-child(n) {
        border: none;
    }
    .about__line {
        height: 7.2rem;
    }
}

@media only screen and (max-width: 400px) {
    .about-desc {
        font-size: 1.8rem;
    }
    .stats__count {
        font-size: 7.8rem;
    }
}



/* ===================================================================
 * # contact 
 *
 * ------------------------------------------------------------------- */
 .s-contact {
    background-color: #151515;
    background-image: url("../images/contact-bg.jpg");
    background-repeat: no-repeat;
    background-position: center, center;
    padding-top: 15rem;
    padding-bottom: 12rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.s-contact .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
    background-color: #151515;
}

.s-contact .form-field {
    position: relative;
}

.s-contact .form-field-half {
    position: relative;
    width: 50%;
    margin-top: 25px;
}

.s-contact .form-field-half label{
    display: inline;
    color: white;
}

.s-contact .form-field.half-width {
    width: 50%;
    float: left;
}

.s-contact .form-field.three-width {
    width: 33%;
    float: left;
}

.s-contact .form-field.left {
    padding-right: 10px;
}

.s-contact .form-field.center {
    padding-left: 10px;
    padding-right: 10px;
}

.s-contact .form-field.rigth {
    padding-left: 10px;
}

.s-contact .form-field:after {
    content: "";
    display: table;
    clear: both;
}

.s-contact .form-field label {
    font-family: "montserrat-light", sans-serif;
    font-size: 1rem;
    line-height: 2.4rem;
    position: absolute;
    bottom: -0.3rem;
    right: .6rem;
    text-transform: uppercase;
    letter-spacing: .1rem;
    padding: 0 2rem;
    margin: 0;
    color: #FFFFFF;
    background: var(--color_kaptia);
}

.s-contact .form-field label::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    margin-top: -6px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid var(--color_kaptia);
}

.contact__line {
    display: block;
    width: 2px;
    height: 20.4rem;
    background-color: white;
    position: absolute;
    left: 50%;
    top: -10.2rem;
    margin-left: -1px;
}

.contact-content {
    max-width: 1000px;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.4);
    padding-top: 6rem;
    padding-bottom: 6rem;
    font-family: "montserrat-light", sans-serif;
    font-size: 1.5rem;
    line-height: 2;
    position: relative;
}

.contact-content.feria{
    max-width: 1450px;
}


.contact-content h3 {
    margin-top: 0;
    margin-bottom: 6.6rem;
    color: #FFFFFF;
}

.contact-content h5 {
    margin-top: 0;
    color: var(--color_kaptia);
}

.contact-content input[type="email"],
.contact-content input[type="number"],
.contact-content input[type="search"],
.contact-content input[type="text"],
.contact-content input[type="tel"],
.contact-content input[type="url"],
.contact-content input[type="password"],
.contact-content textarea,
.contact-content select {
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: .9rem;
}

.contact-content input[type="email"]:focus,
.contact-content input[type="number"]:focus,
.contact-content input[type="search"]:focus,
.contact-content input[type="text"]:focus,
.contact-content input[type="tel"]:focus,
.contact-content input[type="url"]:focus,
.contact-content input[type="password"]:focus,
.contact-content textarea:focus,
.contact-content select:focus {
    color: #FFFFFF;
    border-bottom: 1px solid var(--color_kaptia);
}

.contact-content button,
.contact-content .btn {
    margin-top: 3.6rem;
}
.contact-content input::-webkit-input-placeholder,
.contact-content select::-webkit-input-placeholder,
.contact-content textarea::-webkit-input-placeholder {
    color: #4f4f4f;
}

.contact-content input:-moz-placeholder,
.contact-content select:-moz-placeholder,
.contact-content textarea:-moz-placeholder {
    color: #4f4f4f;    /* Firefox 18- */
}

.contact-content input::-moz-placeholder,
.contact-content select::-moz-placeholder,
.contact-content textarea::-moz-placeholder {
    color: #4f4f4f;    /* Firefox 19+ */
}

.contact-content input:-ms-input-placeholder,
.contact-content select:-ms-input-placeholder,
.contact-content textarea:-ms-input-placeholder {
    color: #4f4f4f;
}

.contact-content input.placeholder,
.contact-content select.placeholder,
.contact-content textarea.placeholder {
    color: #4f4f4f !important;
}
.contact-primary, .contact-secondary {
    float: left;
    padding: 0 5rem;
}

.contact-primary {
    width: 65%;
}


.contact-primary #contactForm {
    margin-top: -1.5rem;
}

.contact-secondary {
    width: 35%;
}

.map-big {
    display: block;
}

.map-mobile{
    display: none;
}



.contact-secondary::before {
    content: "";
    display: block;
    width: 35%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #121212;
}

.contact-secondary .contact-info {
    position: relative;
}

.contact-secondary .cinfo {
    margin-bottom: 4.8rem;
}

.contact-social {
    list-style: none;
    display: inline-block;
    margin: 0;
    font-size: 2rem;
}

.contact-social li {
    margin-right: 15px;
    padding-left: 0;
    display: inline-block;
}

.contact-social li a {
    color: white;
}

.contact-social li a:hover, 
.contact-social li a:focus {
    color: var(--color_kaptia);
}

.contact-social li:last-child {
    margin: 0;
}

.message-warning, 
.message-success {
    display: none;
    background: #111111;
    font-size: 1.5rem;
    line-height: 2;
    padding: 3rem;
    margin-bottom: 3.6rem;
    width: 100%;
}

.message-warning {
    color: #ff6163;
}

.message-success {
    color: var(--color_kaptia);
}

.message-warning i, .message-success i {
    margin-right: 10px;
    font-size: 1.2rem;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * contact
 * ------------------------------------------------------------------- */
 @media only screen and (max-width: 1200px) {
    .contact-content {
        max-width: 900px;
    }
}

@media only screen and (max-width: 1000px) {
    .contact-content {
        max-width: 700px;
    }
    .contact-primary, .contact-secondary {
        float: none;
        width: 100%;
    }
    .contact-primary #contactForm {
        margin-top: -1.5rem;
        margin-bottom: 7.2rem;
    }
    .contact-secondary .hide-on-fullwidth {
        display: none;
    }
    .contact-secondary::before {
        display: none;
    }
    .message-warning, .message-success {
        margin-bottom: 6rem;
    }
}

@media only screen and (max-width: 800px) {
    .contact-content h3 {
        text-align: center;
    }

    .s-contact .form-field-half {
        position: relative;
        width: 100%;
        margin-top: 25px;
    }

    .map-big {
        display: none;
    }
    
    .map-mobile{
        display: block;
    }
}

@media only screen and (max-width: 600px) {
    .s-contact {
        padding-top: 12rem;
        padding-bottom: 0;
    }
    .contact__line {
        height: 14.4rem;
        top: -7.2rem;
    }
    .contact-content {
        padding-bottom: 12rem;
        text-align: center;
    }
    .contact-primary, .contact-secondary {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 400px) {
    .contact-primary, .contact-secondary {
        padding: 0 5px;
    }

    
}


/* ===================================================================
 * # aviso legal 
 *
 * ------------------------------------------------------------------- */
 .s-aviso-legal {
    height: auto;
    overflow: hidden;
}

.s-aviso-legal a {
    color: #000000;
}

.s-aviso-legal .header {
    height: 15rem;
    color: white;
    background-color: #00000088;
    font-family: "gotham-medium", sans-serif;
    font-size: 3rem;
    margin-top: 75px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;    
    overflow: hidden;
    
}


.s-aviso-legal .content {
    padding: 8rem;
    font-family: "gotham-light", sans-serif;
}


.s-aviso-legal .header img {
    position: absolute;
    top:0;
    width: 100%;
    opacity: .5;
    z-index: 5;
}

.s-aviso-legal .header div {
    z-index: 10;
}


/* form loader
 * ----------------------------------------------- */
 .submit-loader {
    display: none;
    position: relative;
    left: 0;
    top: 1.8rem;
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}

.submit-loader .text-loader {
    display: none;
    font-family: "montserrat-regular", sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.846;
    color: #FFFFFF;
    letter-spacing: .2rem;
    text-transform: uppercase;
}

.oldie .submit-loader .s-loader {
    display: none;
}

.oldie .submit-loader .text-loader {
    display: block;
}


/* ===================================================================
 * # footer
 *
 * ------------------------------------------------------------------- */
 footer {
    padding: 9rem 0 6rem;
    font-family: "montserrat-light", sans-serif;
    font-size: 15px;
    line-height: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    background-color: #111111;
}

footer h4 {
    color: #FFFFFF;
    font-size: 1.6rem;
    line-height: 1.313;
    margin-top: 0;
    margin-bottom: 3.6rem;
}

footer a {
    color: #FFFFFF;
}

footer a:hover, footer a:focus, footer a:active {
    color: var(--color_kaptia);
}

footer .row {
    max-width: 980px;
}


/* --------------------------------------------------------------- 
 * ## footer main
 * --------------------------------------------------------------- */
.footer-main {
    text-align: left;
}

.footer-main .left {
    padding-right: 40px;
}

.footer-main .right {
    padding-left: 40px;
}

.footer-logo {
    display: block;
    margin: -.6rem 0 3.6rem 0;
    padding: 0;
    outline: 0;
    border: none;
    width: 85px;
    height: 28px;
    background: url("../images/miniLogo.png") no-repeat center;
    background-size: 85px 28px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-subscribe .subscribe-form {
    margin: 0;
    padding: 0;
    position: relative;
}

.footer-subscribe #mc-form {
    width: 100%;
}

.footer-subscribe #mc-form input[type="email"] {
    width: 100%;
    height: 5.4rem;
    padding: 1.2rem 160px 1.2rem 60px;
    background: url(../images/email-icon.png) 20px center no-repeat, rgba(0, 0, 0, 0.1);
    background-size: 24px 16px, auto;
    border: none;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe #mc-form input[type="email"]:focus {
    color: #FFFFFF;
}

.footer-subscribe #mc-form input[type="email"]::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.footer-subscribe #mc-form input[type="email"]:-moz-placeholder {
    color: rgba(255, 255, 255, 0.2);
    /* Firefox 18- */
}

.footer-subscribe #mc-form input[type="email"]::-moz-placeholder {
    color: rgba(255, 255, 255, 0.2);
    /* Firefox 19+ */
}

.footer-subscribe #mc-form input[type="email"]:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.footer-subscribe #mc-form input[type="email"].placeholder {
    color: rgba(255, 255, 255, 0.2) !important;
}

.footer-subscribe #mc-form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    color: #FFFFFF;
    background: var(--color_kaptia);
    border-color: var(--color_kaptia);
    padding: 0 20px;
}

.footer-subscribe #mc-form label {
    color: #FFFFFF;
    font-family: "montserrat-regular", sans-serif;
    font-size: 1.3rem;
    padding: 0 2rem;
}

.footer-subscribe #mc-form label i {
    padding-right: 6px;
}


/* ---------------------------------------------------------------
 * ## footer bottom
 * --------------------------------------------------------------- */
.footer-bottom {
    margin-top: 5.4rem;
    text-align: center;
    font-size: 14px;
}

.footer-bottom .copyright span {
    display: inline-block;
}

.footer-bottom .copyright span::after {
    content: "|";
    display: inline-block;
    padding: 0 1rem 0 1.2rem;
    color: rgba(255, 255, 255, 0.05);
}

.footer-bottom .copyright span:last-child::after {
    display: none;
}

